home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp95 / freyja_t.z / freyja_t / c0s.asm < prev    next >
Assembly Source File  |  1992-04-14  |  407b  |  20 lines

  1. ; C0S.ASM -- Assembly Language Startup Routine for HP95LX System Manager
  2. ;    Compliant Programs
  3. ;    Turbo C/ANSI Version, must be Small model (64K code, separate 64K data)
  4. ;    Written March 1992 by Craig A. Finseth
  5.  
  6.     DOSSEG
  7.  
  8.     .model    small
  9.  
  10.     .stack    10240        ; should be overridden at link time
  11.  
  12.     .data?
  13.  
  14. segpad    db    15 dup (?)    ; unused, makes sure that there's space
  15.                 ; between DATA and _BSS.
  16.  
  17.     .code
  18.     org    10H
  19.     end
  20.